stage.set_background("space")
sprite = codesters.Sprite("spaceship")
sprite.set_size(0.5)
sprite.go_to(-200, 0)
stage.set_gravity(10)
stage.disable_all_walls()
def space_bar():
sprite.jump(5)
# add other actions...
stage.event_key("space", space_bar)
def interval():
top_height = random.randint(50, 300)
# sprite = codesters.Sprite("image", x, y)
top_rock = codesters.Sprite("asteroid", 300, 0)
top_rock.set_height(top_height)
top_rock.set_gravity_off()
top_rock.set_y_speed(0)
top_rock.set_top(250)
bot_height = 350 - top_height
bot_rock = codesters.Sprite("asteroid",300, 0)
bot_rock.set_height(bot_height)
bot_rock.set_gravity_off()
bot_rock.set_y_speed(0)
bot_rock.set_bottom(-250)
top_rock.set_x_speed(-2)
bot_rock.set_x_speed(-2)
# add any other actions...
stage.event_interval(interval, 5)
t = codesters.Teacher()
try:
tval1 = t.find_block('def')[2][1]
tval1a = t.find_block('def')[2][0]
tval1a = t.get_indent_at_line(tval1a)
except:
tval1 = "DNE"
tval1a = "DNE"
try:
params = t.get_parameters_for_function('Text')
ln_params = t.find_text("codesters.Text")
tval3 = t.get_indent_at_line(ln_params[0][0])
tval2 = params[0][0].lower()
tval2a = ln_params[0][1]
except:
params = "DNE"
tval2a = "DNE"
tval3 = "DNE"
tval2 = "DNE"
t1 = TestObjective()
t1.add_success('collision' in tval1 and tval1a == 0, "Great job!")
t1.add_failure('collision' not in tval1, "Did you add a Collision event?")
t1.add_failure(tval1 == "DNE", "Did you add a Collision event?")
t1.add_failure(tval1a > 0, "Oops! Did you indent your Collision Event? Make sure it's outside your Interval Event and not indented.")
t2 = TestObjective()
t2.add_success('game over' in tval2 and 'result' in tval2a and tval3 == 4, "Great job!")
t2.add_failure(tval2 == "DNE", "Did you create a text box?")
t2.add_failure('result' not in tval2a, "Did you rename the text box result?")
t2.add_failure('hello' in tval2, "Did you change the message in the text box?")
t2.add_failure(tval3 != 4, "Did you indent the text box inside the collision event?")
tester = TestManager()
tester.add_test_list([t1, t2])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
提交作品
-
下个活动
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)